Release notes#83
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Adds/updates update-note markdown under content/updates to publish v1.2.1 release notes and refresh the rolling “Insider” release notes for the latest dev build.
Changes:
- Add new
v1_2_1.mdrelease notes entry for v1.2.1. - Update
insider.mdhighlights/fixes and bump Insider build metadata (version/date/build info).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| content/updates/v1_2_1.md | New stable release notes entry for v1.2.1 (front matter + sections). |
| content/updates/insider.md | Refresh Insider rolling notes (front matter date/description + bullet lists + version metadata). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| title: "v1.2.1" | ||
| date: "2026-04-06" | ||
| description: "Import connections from XrmToolBox XML with a source selection step (XTB vs PPTB)" | ||
| heroImage: "/images/updates/v1_2_1.png" |
There was a problem hiding this comment.
heroImage points to /images/updates/v1_2_1.png, but there is no corresponding file under public/images/updates (only v1_2_0.png and Insider.png exist). This will produce a broken image / OG preview; add the image asset or update heroImage to an existing path.
| heroImage: "/images/updates/v1_2_1.png" | |
| heroImage: "/images/updates/v1_2_0.png" |
| --- | ||
| title: "v1.2.1" | ||
| date: "2026-04-06" | ||
| description: "Import connections from XrmToolBox XML with a source selection step (XTB vs PPTB)" |
There was a problem hiding this comment.
This release file’s slug is v1_2_1, but normalizeUpdateSlug() currently maps v1_2_1 to the Insider page for back-compat (see lib/updates.ts special-case). With this file present, that mapping will cause the “latest” stable update to render Insider content instead of v1.2.1; remove/adjust that mapping now that v1_2_1.md exists.
| date: "2026-03-21" | ||
| description: "Rolling release notes for Insider (dev) builds — all *-dev.* versions map here." | ||
| date: "2026-04-06" | ||
| description: "Rolling release notes for Insider (dev) builds — all _-dev._ versions map here." |
There was a problem hiding this comment.
Front-matter description is used directly for page metadata (no markdown rendering). The _ -dev._ emphasis markers will show up literally in SEO/meta descriptions; use plain text (e.g., “all -dev.* versions map here”) instead of markdown formatting.
| description: "Rolling release notes for Insider (dev) builds — all _-dev._ versions map here." | |
| description: "Rolling release notes for Insider (dev) builds — all -dev.* versions map here." |
| - Settings opens as a tab with VSCode-style UI; adds Settings to View menu (#464) | ||
| - feat: Allow sharing of connection files (import/export) (#444) | ||
| - Feature/tab context menu (#456) | ||
| - Add visual indicator and one-click clear to filter button when filters are active (#509) |
There was a problem hiding this comment.
Highlight line is missing an article and reads awkwardly (“clear to filter button”). Consider rephrasing for grammar/clarity (e.g., “clear to the filter button” / “clear button on the filter”).
| - Add visual indicator and one-click clear to filter button when filters are active (#509) | |
| - Add visual indicator and one-click clear button on the filter when filters are active (#509) |
| - Dependencies Fixed: bump @xmldom/xmldom (#514) | ||
| - Dependencies Fixed: bump lodash in the npmandyarn group across 1 directory (#513) | ||
| - Dependencies Fixed: bump handlebars (#512) |
There was a problem hiding this comment.
These dependency bullets are inconsistently capitalized (“Dependencies Fixed”) and repeat the same prefix; also “npmandyarn” looks like a typo/implementation detail that’s hard to read in release notes. Consider switching to sentence-case phrasing (e.g., “Dependencies: bump …”) and using a human-readable group name.
| - Dependencies Fixed: bump @xmldom/xmldom (#514) | |
| - Dependencies Fixed: bump lodash in the npmandyarn group across 1 directory (#513) | |
| - Dependencies Fixed: bump handlebars (#512) | |
| - Dependencies: bump @xmldom/xmldom (#514) | |
| - Dependencies: bump lodash in the npm and Yarn group across 1 directory (#513) | |
| - Dependencies: bump handlebars (#512) |
No description provided.